home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / jed096_1.zip / JED / INSTALL.PC < prev    next >
Text File  |  1994-04-27  |  5KB  |  120 lines

  1. IBMPC (DOS and OS/2) installation specific functions.
  2.  
  3. This distribution also includes the following zip files:
  4.  
  5.    slang.zip
  6.  
  7. !!! Note: Files with the extension '.zip' can be unzipped with 
  8. Info-Zip's unzip or with pkunzip. However, if using pkunzip, then 
  9. you MUST use the -d option; e.g.,
  10.  
  11.     pkunzip -d jed095.zip
  12.     
  13. Suppose that you have unzipped jed.zip from the subdirectory c:\editors. 
  14. You will then find:
  15.  
  16.     c:\editors\jed
  17.     c:\editors\jed\lib
  18.     c:\editors\jed\bin
  19.     c:\editors\jed\src
  20.     c:\editors\jed\info
  21.     c:\editors\jed\doc
  22.  
  23.         
  24. The directory C:\editors\jed will be your JED_ROOT directory.  You will 
  25. need to set the environment variable JED_ROOT, as in:
  26.  
  27.         set JED_ROOT=c:\editors\jed
  28.  
  29. Under DOS, this command should be placed in the autoexec.bat file.
  30. Under OS/2, users often place such lines in config.sys so that the
  31. variable is set in every command window. Other users have a standard
  32. file which they run at the start of every command window, and the
  33. "set" command could be placed in such a file. Don't edit config.sys
  34. unless you are confident in your ability to make changes to this
  35. essential file.
  36.  
  37.   +===========================================================
  38.  
  39.     Note:
  40.     
  41.     This version of JED is distributed in 3 ways:
  42.     
  43.          jed.exe   :  Borland BCC compiled DOS executable
  44.                   it runs on all PCs (8086,  80286, etc....
  45.               
  46.      jed.386   :  DJGPP compiled a.out file.  This requires the GO32
  47.                   extender.  Requires 386 or higher machine.
  48.               
  49.      jed386.exe:  Same as jed.386 except that it has the extender 
  50.                   included as part of the executable.
  51.  
  52.     If you are intalling JED on a 386/486 DOS system, you should use one of
  53.     the jed386 versions (jed.386 or jed386.exe).  This supports up to 128Meg
  54.     (Disk) + 128Meg (extended) virtual memory when used with DJ Delorie's
  55.     GO32 DOS extender.  The executable `jed386.exe' already has the extender
  56.     built in but jed.386 does not.  The extender, sources, and gcc
  57.     development environment are available from oak.oakland.edu in
  58.     pub/msdos/djgpp.   See also the file `copying.dj' included in this
  59.     distribution.
  60.  
  61.     If you use the 386 versions, you will need to create a tmp directory
  62.     somewhere and point the environment variable TMP at it.  For example,
  63.     suppose that you use the directory `C:\tmp' as the tmp directory.  Then
  64.     simply put the line
  65.  
  66.                        set TMP=c:/tmp
  67.  
  68.     somewhere at the top of your autoexec.bat file. You might have to create
  69.     the directory if it does not already exist. 
  70.     
  71.     !!! Note also the use of the FORWARD slash !!!
  72.     
  73.   +==================================================================
  74.   
  75. Copy the executable file `bin\jed.exe' to where you keep your other *.exe and
  76. *.com files (somewhere in your path!).
  77.  
  78.    [For DJGPP compiled jed386, copy it as well]
  79.  
  80. Reboot your machine so that the changes you have made in your autoexec.bat
  81. or config.sys file will take effect.
  82.  
  83. JED should now be installed on your system.  To test to see if it properly
  84. installed, byte compile the S-Lang library files by changing to the
  85. jed\lib\ subdirectory and running jed as:
  86.  
  87.         jed -batch -n -l preparse
  88.  
  89. This creates pre-parsed lib\*.slc files that load quicker than lib\*.sl files.
  90.  
  91. Once jed is installed on your system, it can be customized by editing the
  92. file `jed.rc'.
  93.  
  94.  
  95. OS/2-specific information
  96. -------------------------
  97.  
  98. JED can be compiled for OS/2 2.x using Mattes' emx/gcc or Borland C,
  99. and for OS/2 1.x--2.x with Microsoft C. The file jed/makefile.os2 will
  100. build JED using emx/gcc or MSC, depending on the make-line. The
  101. default JED_ROOT location can be specified in the makefile.
  102.  
  103. OS/2 versions first appeared in 0.95. Extended attributes are handled,
  104. and the case of filenames on HPFS will be preserved. Buffer-name
  105. completion will cycle through all matches, regardless of case.
  106.  
  107. The OS/2 versions can handle compressed info files, ispell, and man.
  108. Necessary support programs for these capabilities may be obtained from
  109. ftp.cdrom.com (currently in pub/os2/all/unix/ or pub/os2/2_x/unix/)
  110. or ftp.informatik.tu-muenchen.de.
  111.  
  112. I would like to acknowledge John Burnell (johnb@huia.grace.cri.nz) for his
  113. work on the OS/2 port.  In addition, I am very grateful to Darrel Hankerson
  114. (hankedr@mail.auburn.edu), who is responsible for the Microsoft C and
  115. emx/gcc versions, as well Dominik Wujastyk (ucgadkw@ucl.ac.uk) for his
  116. contribution to the OS/2 version.
  117.  
  118. Any questions should be emailed to me at davis@amy.tch.harvard.edu.
  119.  
  120.